One export option is to save the data directly into a Cloudant or CouchDB database.
Collect your database connection information: the database host, user name, and password.
If your Cloudant instance was provisioned in Bluemix you can find the connectivity information in the Service Credentials tab.
From the toolbar in the display
output, click the Download button
Choose Stash to Cloudant from the dropdown menu
If you get an error that a library is missing, you may need to install the cloudant-spark library.
Click the dropdown to see the list of available connections
Select an existing connection or add a new connection
+
plus button to add a new connectionEnter your Cloudant database credentials in JSON format
If you are stashing to CouchDB be sure include the protocol. See the sample credentials format below.
Click OK
Click Submit
CouchDB
{
"name": "local-couchdb-connection",
"credentials": {
"username": "couchdbuser",
"password": "password",
"protocol": "http",
"host": "127.0.0.1:5984",
"port": 5984,
"url": "http://couchdbuser:password@127.0.0.1:5984"
}
}
Cloudant
{
"name": "remote-cloudant-connection",
"credentials": {
"username": "username-bluemix",
"password": "password",
"host": "host-bluemix.cloudant.com",
"port": 443,
"url": "https://username-bluemix:password@host-bluemix.cloudant.com"
}
}